home *** CD-ROM | disk | FTP | other *** search
/ MacWarehouse Macintosh Games / MacWarehouse Macintosh Games.iso / AMBER demo / AMBER-Journeys Beyond™ Patch 1c / 00103_generic domain rules.ls < prev    next >
Encoding:
Text File  |  1997-02-19  |  13.8 KB  |  475 lines

  1. on cursorOff
  2.   global colorcrsr, YugoCursors, gCursorSwitch
  3.   if objectp(colorcrsr) then
  4.     colorcrsr(mGetSetCursor, getProp(YugoCursors, #noCursor))
  5.     set gCursorSwitch to #off
  6.   else
  7.     cursor(200)
  8.     set gCursorSwitch to #off
  9.   end if
  10. end
  11.  
  12. on cursorOn
  13.   global colorcrsr, YugoCursors, thisCursor, gCursorSwitch
  14.   if gCursorSwitch = #off then
  15.     if objectp(colorcrsr) then
  16.       colorcrsr(mGetSetCursor, getProp(YugoCursors, thisCursor))
  17.     else
  18.       castCursor(getProp(YugoCursors, thisCursor))
  19.     end if
  20.     set gCursorSwitch to #on
  21.   end if
  22. end
  23.  
  24. on castCursor cursorID
  25.   set myCursorOffset to 1200
  26.   if integerp(cursorID) then
  27.     set whichCursor to cursorID - 6000
  28.   else
  29.     exit
  30.   end if
  31.   set cMask to myCursorOffset + (whichCursor * 2)
  32.   cursor([cMask - 1, cMask])
  33. end
  34.  
  35. on killVideo
  36.   global lastScoreSprite
  37.   set vidSprite to 44
  38.   set the movieRate of sprite vidSprite to 0
  39.   set the locV of sprite vidSprite to -500
  40.   updateStage()
  41.   set the castNum of sprite vidSprite to 7
  42.   puppetSprite(vidSprite, 0)
  43. end
  44.  
  45. on pushVideo
  46.   set vidSprite to 44
  47.   set the movieTime of sprite 44 to 0
  48.   updateStage()
  49.   set the movieRate of sprite 44 to 1
  50. end
  51.  
  52. on setCurrentLocation suggestion
  53.   return "Use the goTo() function instead.."
  54. end
  55.  
  56. on goTo destination, transition
  57.   global oPuppeteer, oStoryteller, builderWindow, gPreloading, gScanFinish, colorcrsr, YugoCursors, thisCursor, gCursorSwitch, gPeekAlertEnabled
  58.   report(">starting 'goTo()'  (" & the timer & " ticks after mouseDown)")
  59.   if objectp(colorcrsr) then
  60.     colorcrsr(mGetSetCursor, getProp(YugoCursors, #noCursor))
  61.   else
  62.     cursor(200)
  63.   end if
  64.   set gCursorSwitch to #off
  65.   if (destination = #destination) or (transition = #transition) then
  66.     exit
  67.   end if
  68.   report(">cursorOff done (" & the timer & " ticks)")
  69.   setAt(getProp(the lsStateData of oStoryteller, #previousLocation), 1, getAt(getProp(the lsStateData of oStoryteller, #currentLocation), 1))
  70.   setAt(getProp(the lsStateData of oStoryteller, #currentLocation), 1, destination)
  71.   if the castNum of sprite 44 <> 7 then
  72.     killVideo()
  73.     moveMovies(oPuppeteer)
  74.   end if
  75.   setTransition(oPuppeteer, transition)
  76.   report(">'setTransition()' done (" & the timer & " ticks)")
  77.   moveToLocation(oPuppeteer)
  78.   report(">'moveToLocation()' done (" & the timer & " ticks)")
  79.   if getPos(the windowList, builderWindow) then
  80.     tell builderWindow
  81.       refreshCast()
  82.       refreshHotspots()
  83.     end tell
  84.   end if
  85.   if gPreloading = 1 then
  86.     preloadLocations()
  87.     report(">preLoadLocations done (" & the timer & " ticks)")
  88.   else
  89.     report(">preLoadLocations skipped (" & the timer & " ticks)")
  90.   end if
  91.   report(" Available memory: " & the freeBytes / 1024 & " K (incl. " & the freeBlock / 1024 & " K block)")
  92.   report("   :")
  93.   set lsMoveCounter to getProp(the lsStateData of oStoryteller, #moveCount)
  94.   set oldCount to getAt(lsMoveCounter, 1)
  95.   setAt(lsMoveCounter, 1, oldCount + 1)
  96.   return #OK
  97. end
  98.  
  99. on goBack
  100.   global oStoryteller
  101.   goTo(getState(oStoryteller, #previousLocation), #backOff)
  102. end
  103.  
  104. on idle
  105.   global lastCursor, thisCursor, cursorOffset, castCursorList, maxCursor, oStoryteller, oPuppeteer, gCurrentHotspot, gItemInUse, domainIsReady, gPreloading, gStopTransitions, g16bit, gTransQuality, gFreezeInventory, gSoundPath, gOriginPoint, gMenuBottomY, gGammaLevel, gDeferredTransit
  106.   if gDeferredTransit = #none then
  107.     if domainIsReady then
  108.       cursorOn()
  109.       set thisCursor to #pointer
  110.       set gCurrentHotspot to #none
  111.       if the mouseV < gMenuBottomY then
  112.         if the number of menus = 0 then
  113.           installMenu(the number of cast "Amber menus")
  114.           if gTransQuality = #none then
  115.             set the checkMark of menuItem 1 of menu 3 to 1
  116.           end if
  117.           if gTransQuality = #Better then
  118.             set the checkMark of menuItem 2 of menu 3 to 1
  119.           end if
  120.           if gTransQuality = #Best then
  121.             set the checkMark of menuItem 3 of menu 3 to 1
  122.           end if
  123.           set the checkMark of menuItem (8 - the soundLevel) of menu 2 to 1
  124.           if gGammaLevel <> "unknown" then
  125.             set the checkMark of menuItem (8 - gGammaLevel) of menu 4 to 1
  126.           end if
  127.           set thisCursor to #pointer
  128.         end if
  129.       else
  130.         installMenu(0)
  131.       end if
  132.       set mouseLoc to point(the mouseH, the mouseV) - gOriginPoint
  133.       repeat with i in the lsLiveHotspots of oPuppeteer
  134.         if inside(mouseLoc, getAt(i, 2)) then
  135.           set myCursor to getAt(i, 1)
  136.           if myCursor = #itemInUse then
  137.             set thisCursor to getState(oStoryteller, #itemInUse)
  138.           else
  139.             set thisCursor to myCursor
  140.           end if
  141.           set gCurrentHotspot to i
  142.           exit repeat
  143.         end if
  144.       end repeat
  145.       if getState(oStoryteller, #tunedIn) = #inBetween then
  146.         cycleStatic()
  147.       end if
  148.       prodVLoops()
  149.       if getState(oStoryteller, #playerIsExaminingTelegram) = 1 then
  150.         repeat with i = 25 to 36
  151.           if the mouseCast = the castNum of sprite i then
  152.             set thisCursor to #pointer
  153.             exit repeat
  154.           end if
  155.         end repeat
  156.       end if
  157.       if thisCursor <> lastCursor then
  158.         cursorDance(value(lastCursor & "To" & thisCursor))
  159.         set lastCursor to thisCursor
  160.       end if
  161.       if getState(oStoryteller, #tunedIn) = #inBetween then
  162.         cycleStatic()
  163.       end if
  164.     end if
  165.   else
  166.     do(gDeferredTransit)
  167.     if gDeferredTransit contains "waiting" then
  168.       if domainIsReady = 1 then
  169.         if getState(oStoryteller, #currentDomain) = the last word in gDeferredTransit then
  170.           set gDeferredTransit to #none
  171.         end if
  172.       end if
  173.     end if
  174.   end if
  175. end
  176.  
  177. on cursorDance cursorList
  178.   global colorcrsr, thisCursor, YugoCursors, gCPU
  179.   if gCPU <> #PC then
  180.     if not objectp(colorcrsr) then
  181.       cursor(-1)
  182.       set colorcrsr to ColorCursor(mnew)
  183.     end if
  184.   end if
  185.   if not listp(cursorList) then
  186.     if objectp(colorcrsr) then
  187.       colorcrsr(mGetSetCursor, getProp(YugoCursors, thisCursor))
  188.     else
  189.       castCursor(getProp(YugoCursors, thisCursor))
  190.     end if
  191.     exit
  192.   end if
  193.   set flipBook to cursorList
  194.   if objectp(colorcrsr) then
  195.     repeat with flipper = 1 to count(flipBook)
  196.       startTimer()
  197.       colorcrsr(mGetSetCursor, getAt(flipBook, flipper))
  198.       repeat while 2 > the timer
  199.         nothing()
  200.       end repeat
  201.     end repeat
  202.   else
  203.     repeat with flipper = 1 to count(flipBook)
  204.       startTimer()
  205.       castCursor(getAt(flipBook, flipper))
  206.       repeat while 2 > the timer
  207.         nothing()
  208.       end repeat
  209.     end repeat
  210.   end if
  211. end
  212.  
  213. on inState stateVar, whichItem
  214.   global oStoryteller
  215.   set statelist to getProp(the lsStateData of oStoryteller, stateVar)
  216.   if getPos(statelist, whichItem) = 0 then
  217.     return 0
  218.   else
  219.     return 1
  220.   end if
  221. end
  222.  
  223. on trimState stateVar, whichItem
  224.   global oStoryteller
  225.   set statelist to getProp(the lsStateData of oStoryteller, stateVar)
  226.   set myPos to getPos(statelist, whichItem)
  227.   if myPos then
  228.     deleteAt(statelist, myPos)
  229.   end if
  230. end
  231.  
  232. on addState stateVar, whichItem
  233.   global oStoryteller
  234.   set statelist to getProp(the lsStateData of oStoryteller, stateVar)
  235.   set myPos to getPos(statelist, whichItem)
  236.   if not myPos then
  237.     append(statelist, whichItem)
  238.   end if
  239. end
  240.  
  241. on patchPalette
  242.   global oFixPal
  243.   oFixPal(mPatchIt)
  244. end
  245.  
  246. on forcePalette palName
  247.   global oPuppeteer, gCurrentPalette
  248.   puppetPalette(palName, 60)
  249.   set gCurrentPalette to #changeMe
  250.   patchPalette()
  251. end
  252.  
  253. on loadMultiFrames whichOnes
  254.   global oPuppeteer
  255.   set theFrames to getaProp(the lsMultiFrames of oPuppeteer, whichOnes)
  256.   if listp(theFrames) then
  257.     repeat with i in theFrames
  258.       preLoadCast(i)
  259.     end repeat
  260.   else
  261.     alert("Hey! There's no such list in lsMultiframes!")
  262.   end if
  263. end
  264.  
  265. on purgeMultiframes whichOnes
  266.   global oPuppeteer
  267.   set theFrames to getaProp(the lsMultiFrames of oPuppeteer, whichOnes)
  268.   if listp(theFrames) then
  269.     repeat with i in theFrames
  270.       unLoadCast(i)
  271.     end repeat
  272.   else
  273.     alert("Hey! There's no such list in lsMultiframes!")
  274.   end if
  275. end
  276.  
  277. on disablePeekAlert
  278.   nothing()
  279. end
  280.  
  281. on enablePeekAlert
  282.   nothing()
  283. end
  284.  
  285. on gammaFade upOrDown, howFast
  286.   global gCPU
  287.   if gCPU = #PC then
  288.     exit
  289.   end if
  290.   set speedCodes to [#glacial: "4", #slow: "18", #fast: "36", #instant: "100"]
  291.   set mySpeed to getaProp(speedCodes, howFast)
  292.   if voidp(mySpeed) then
  293.     set mySpeed to getProp(speedCodes, #fast)
  294.   end if
  295.   if upOrDown = #down then
  296.     MonitorFade("down", mySpeed)
  297.   else
  298.     updateStage()
  299.     MonitorFade("up", mySpeed)
  300.   end if
  301. end
  302.  
  303. on setColor howManybits
  304.   set the colorDepth to howManybits
  305.   if the colorDepth <> howManybits then
  306.     if howManybits = 16 then
  307.       set the colorDepth to 32
  308.     else
  309.       put "Sorry, Director sez the colorDepth is " & the colorDepth & " bits.."
  310.     end if
  311.   else
  312.   end if
  313. end
  314.  
  315. on initTelegramPuzzle
  316.   global oStoryteller, oPuppeteer, lastScoreSprite, gOriginPoint
  317.   set vGap to 68
  318.   set hGap to 65
  319.   set origin to point(220, 182) + gOriginPoint
  320.   set firstSprite to 25
  321.   set puzzlePieces to getProp(the lsMultiFrames of oPuppeteer, #telegram)
  322.   set assignSprite to firstSprite
  323.   repeat with thisPiece in puzzlePieces
  324.     puppetSprite(assignSprite, 1)
  325.     set the castNum of sprite assignSprite to thisPiece
  326.     set the ink of sprite assignSprite to 8
  327.     set assignSprite to assignSprite + 1
  328.   end repeat
  329.   set telegramStart to [5, 7, 12, 8, 11, 9, 6, 10, 2, 3, 1, 4]
  330.   setProp(the lsStateData of oStoryteller, #telegramGuess, value(string(telegramStart)))
  331.   repeat with i in telegramStart
  332.     set workingNumber to getPos(telegramStart, i) - 1
  333.     set skipRows to workingNumber / 4
  334.     set skipColumns to workingNumber mod 4
  335.     set the loc of sprite (firstSprite + i - 1) to origin + point(hGap * skipColumns, vGap * skipRows)
  336.   end repeat
  337.   puppetTransition(26)
  338.   updateStage()
  339. end
  340.  
  341. on moveMe
  342.   global oStoryteller
  343.   set chosenSprite to the clickOn
  344.   set chosenPiece to chosenSprite - 24
  345.   set theHole to 2
  346.   set emptySprite to 26
  347.   set moveTempo to 3
  348.   set puzzleState to getProp(the lsStateData of oStoryteller, #telegramGuess)
  349.   set isAdjacent to 0
  350.   set chosenSpace to getPos(puzzleState, chosenPiece)
  351.   set emptySpace to getPos(puzzleState, theHole)
  352.   if (abs(chosenSpace - emptySpace) = 1) and (((chosenSpace - 1) / 4) = ((emptySpace - 1) / 4)) then
  353.     set isAdjacent to #sameRow
  354.   end if
  355.   if (abs(chosenSpace - emptySpace) = 4) and (((chosenSpace - 1) mod 4) = ((emptySpace - 1) mod 4)) then
  356.     set isAdjacent to #sameColumn
  357.   end if
  358.   if isAdjacent = 0 then
  359.     repeat with nudge in [point(-1, -1), point(1, 1)]
  360.       set the loc of sprite chosenSprite to the loc of sprite chosenSprite + nudge
  361.       updateStage()
  362.       wait(3)
  363.     end repeat
  364.   else
  365.     soundEffect(#movePaper, 50)
  366.     set chosenLoc to the loc of sprite chosenSprite
  367.     if isAdjacent = #sameRow then
  368.       set targetH to the locH of sprite emptySprite
  369.       if the locH of sprite chosenSprite > targetH then
  370.         set currentH to the locH of sprite chosenSprite
  371.         repeat while currentH > targetH
  372.           set theTix to the ticks
  373.           set the locH of sprite chosenSprite to currentH
  374.           updateStage()
  375.           set currentH to currentH - 8
  376.           repeat while the ticks < (theTix + moveTempo)
  377.             nothing()
  378.           end repeat
  379.         end repeat
  380.       else
  381.         set currentH to the locH of sprite chosenSprite
  382.         repeat while currentH < targetH
  383.           set theTix to the ticks
  384.           set the locH of sprite chosenSprite to currentH
  385.           updateStage()
  386.           set currentH to currentH + 8
  387.           repeat while the ticks < (theTix + moveTempo)
  388.             nothing()
  389.           end repeat
  390.         end repeat
  391.       end if
  392.       set the locH of sprite chosenSprite to targetH
  393.       updateStage()
  394.     else
  395.       set targetV to the locV of sprite emptySprite
  396.       if the locV of sprite chosenSprite > targetV then
  397.         set currentV to the locV of sprite chosenSprite
  398.         repeat while currentV > targetV
  399.           set theTix to the ticks
  400.           set the locV of sprite chosenSprite to currentV
  401.           updateStage()
  402.           set currentV to currentV - 8
  403.           repeat while the ticks < (theTix + moveTempo)
  404.             nothing()
  405.           end repeat
  406.         end repeat
  407.       else
  408.         set currentV to the locV of sprite chosenSprite
  409.         repeat while currentV < targetV
  410.           set theTix to the ticks
  411.           set the locV of sprite chosenSprite to currentV
  412.           updateStage()
  413.           set currentV to currentV + 8
  414.           repeat while the ticks < (theTix + moveTempo)
  415.             nothing()
  416.           end repeat
  417.         end repeat
  418.       end if
  419.       set the locV of sprite chosenSprite to targetV
  420.       updateStage()
  421.     end if
  422.     set the loc of sprite emptySprite to chosenLoc
  423.     updateStage()
  424.     set holePos to getPos(puzzleState, theHole)
  425.     set piecePos to getPos(puzzleState, chosenPiece)
  426.     if holePos > piecePos then
  427.       deleteAt(puzzleState, piecePos)
  428.       addAt(puzzleState, holePos, chosenPiece)
  429.       deleteAt(puzzleState, holePos - 1)
  430.       addAt(puzzleState, piecePos, theHole)
  431.     else
  432.       deleteAt(puzzleState, holePos)
  433.       addAt(puzzleState, piecePos, theHole)
  434.       deleteAt(puzzleState, piecePos - 1)
  435.       addAt(puzzleState, holePos, chosenPiece)
  436.     end if
  437.     if puzzleState = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] then
  438.       setState(oStoryteller, #showMontage, 1)
  439.       setTransition(oPuppeteer, #fadeIn)
  440.       updateDisplay(oPuppeteer)
  441.     end if
  442.   end if
  443. end
  444.  
  445. on reportsprites
  446.   repeat with i = 1 to 48
  447.     set myCast to the castNum of sprite i
  448.     if (myCast <> 7) and (myCast <> 6) then
  449.       put "spr " & i & " cast " & myCast & ": " & the name of cast myCast
  450.     end if
  451.   end repeat
  452.   put ":"
  453. end
  454.  
  455. on reportloaded
  456.   repeat with i = 1 to the number of castMembers
  457.     if the loaded of cast i = 1 then
  458.       put i & ": " & the name of cast i
  459.     end if
  460.   end repeat
  461.   put ":"
  462. end
  463.  
  464. on reportPuppets
  465.   repeat with i = 1 to 48
  466.     if the puppet of sprite i then
  467.       put i
  468.     end if
  469.   end repeat
  470. end
  471.  
  472. on clearTransitions
  473.   puppetTransition(0, 0, 0, 1)
  474. end
  475.